* 
{
    box-sizing:border-box;
}

/* Slideshow container */
.slideshow-container, 
.slidercontainer,
.videoContent  {
  max-width: 595px;
  position: relative;
  margin: auto;
}

.rightBodyContent {
  max-width: 800px;
  position: relative;
  margin: auto;
  padding-left: 8px;
  padding-top: 1px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.showSlide {  
  display: none  
} 

.showSlide img {  
  align: center;
  width: 100%;  
}


/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
 .prev, .next,
 .left, .right {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next,
.right {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.left:hover, 
.right:hover {  
  background-color: rgba(115, 115, 115, 0.8);  
} 


/* On hover, add a black background color with a little bit see-through */
.prev:hover, 
.next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  background-color: #470909;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;  /* absolute; */
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: relative;  /* absolute; */
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

 .active, 
 .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
} 


/* =======================================================  */




/* =======================================================  */


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}


/* Style the buttons that are used to open the tab content */
.tab button {
 background-color: inherit;
  float: left;
 border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover*/
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: yellow;
}

/* Style the tab content */
.tabcontent {
 display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
} 


.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Gofrom zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
} 



/*  TAB LAYOUTS  CSS */

.tabs {
  position: relative;   
  min-height: 300px; /* This part sucks */
  clear: both;
  margin: 25px 0;
 
}


.tab {
  float: left;
}

.tab label {
  background: #eee; 
  padding: 10px; 
  border: 1px solid #ccc; 
  margin-left: -1px; 
  position: relative;
  left: 1px; 
}
.tab [type=radio] {
  display: none;   
}
.content {
  position: absolute;
  top: 28px;
  left: 0;
  background: white;
  right: 0;
  bottom: 0;
  padding: 20px;
  border: 1px solid #ccc; 
  overflow-y: scroll;
  word-wrap:hyphenate;
  min-height: 450px;
  
}
[type=radio]:checked ~ label {
  background: white;
  border-bottom: 1px solid white;
  z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
  z-index: 1;
}

